home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {app} / InstallData / Syntax / Framscript.ini < prev    next >
Encoding:
INI File  |  2008-12-09  |  925 b   |  37 lines

  1. [Comment]
  2. 1=*************************************************************
  3. 2= <b>Syntax:</b> Framscript                                   
  4. 3= <b>Author:</b> Eelke Spaak                                  
  5. 4= <b>Version:</b> 1.0                                         
  6. 5= <b>Date:</b> 2007-09-02                                     
  7. 6=*************************************************************
  8.  
  9. [MultiHighlight]
  10. Syntax=
  11. File=
  12.  
  13. [Sample]
  14. 1=# This is a sample piece of code
  15. 2=expdef:
  16. 3=name:Sample experiment definition
  17. 4=info:~
  18. 5=An example code.
  19. 6=~
  20. 7=code:~
  21. 8=
  22. 9=// This is a single-line comment
  23. 10=
  24. 11=function onExpDefLoad() {
  25. 12=    GenotypeLibrary.clear();
  26. 13=    if (alsoClearLiveLibrary()) {
  27. 14=        LiveLibrary.clear();
  28. 15=    }
  29. 16=    
  30. 17=    var myString = "this is a string";
  31. 18=    var myInt = 300;
  32. 19=    var myFloat = 1.0;
  33. 20=    
  34. 21=    Math.round(myInt / myFloat);
  35. 22=}
  36.  
  37.